home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 January: Mac OS SDK / Dev.CD Jan 96 SDK / Dev.CD Jan 96 SDK1.toast / Development Kits (Disc 1) / AppleScript / Development Tools / Sample Code / 7Edit / C Sources / makefile next >
Encoding:
Makefile  |  1994-02-25  |  1.9 KB  |  73 lines  |  [TEXT/MPS ]

  1. #   File:       makefile
  2. #   Target:     SVEdit
  3. #   Sources:    SVEditGlobals.c
  4. #               SVEditGlobals.h
  5. #               SVEditUtils.h
  6. #               SVEditUtils.c
  7. #               SVEditAEUtils.h
  8. #               SVEditAEUtils.c
  9. #               SVEditions.h
  10. #               SVEditions.c
  11. #               SVEditWindow.c
  12. #               SVEditWindow.h
  13. #                SVEditFile.h
  14. #                SVEditFile.c
  15. #               SVEditAppleEvents.c
  16. #               SVEditAppleEvents.h
  17. #               SVEditMain.c
  18.  
  19.  
  20. OBJECTS = ∂
  21.         SVEditGlobals.c.o ∂
  22.         SVEditUtils.c.o ∂
  23.         SVEditAEUtils.c.o ∂
  24.         SVEditions.c.o ∂
  25.         SVEditWindow.c.o ∂
  26.         SVEditFile.c.o ∂
  27.         SVAppleEvents.c.o ∂
  28.         SVEditMain.c.o ∂
  29.  
  30.  
  31. SVEditGlobals.c.o ƒ makefile SVEditGlobals.h SVEditGlobals.c
  32.      c  SVEditGlobals.c -sym off
  33.      
  34. SVEditUtils.c.o ƒ makefile SVEditUtils.h SVEditUtils.c SVEditGlobals.h
  35.      c  SVEditUtils.c -sym off
  36.      
  37. SVEditAEUtils.c.o ƒ makefile SVEditAEUtils.h SVEditAEUtils.c SVEditGlobals.h
  38.      c  SVEditAEUtils.c -sym off
  39.      
  40. SVEditions.c.o ƒ makefile SVEditions.h SVEditions.c SVEditGlobals.h SVEditUtils.h
  41.      c  SVEditions.c -sym off
  42.      
  43. SVEditWindow.c.o ƒ makefile SVEditWindow.c SVEditWindow.h SVEditGlobals.h SVEditUtils.h
  44.      c  SVEditWindow.c -sym off 
  45.  
  46. SVEditFile.c.o ƒ makefile SVEditFile.h SVEditFile.c SVEditGlobals.h SVEditUtils.h
  47.      c  SVEditFile.c -sym off
  48.      
  49. SVAppleEvents.c.o ƒ makefile SVAppleEvents.h SVAppleEvents.c SVEditGlobals.h SVEditUtils.h SVEditAEUtils.h SVEditWindow.h
  50.      c  SVAppleEvents.c -sym off 
  51.      
  52. SVEditMain.c.o ƒ makefile SVEditMain.c SVAppleEvents.h SVEditGlobals.h SVEditUtils.h SVEditWindow.h
  53.      c  SVEditMain.c -sym off 
  54.         
  55. 7Edit ƒƒ makefile {OBJECTS}
  56.     Link -sym off -w -t APPL -c 'SVED' ∂
  57.         {OBJECTS} ∂
  58.         "{Libraries}"Runtime.o ∂
  59.         "{Libraries}"Interface.o ∂
  60.         "{Libraries}"ToolLibs.o ∂
  61.         "{CLibraries}"StdCLib.o ∂
  62.         "{PLibraries}"PasLib.o ∂
  63.         "{Libraries}"AEObjectSupportLib.o ∂
  64.         -o 7Edit
  65.         
  66. 7Edit ƒƒ SVEdit.r makefile
  67.         Rez -rd -o {Targ} SVEdit.r -append
  68.  
  69.         
  70.         
  71.     
  72.  
  73.